home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MacGzip 0.1b2 Source / gzip-1.2.4 sources / lzw.c < prev    next >
Text File  |  1993-11-08  |  682b  |  36 lines

  1. /* lzw.c -- compress files in LZW format.
  2.  * This is a dummy version avoiding patent problems.
  3.  */
  4.  
  5. /*
  6.  * Modified:1993 by SPDsoft for MacGzip
  7.  *
  8.  */
  9.  
  10.  
  11. #ifdef RCSID
  12. static char rcsid[] = "$Id: lzw.c,v 0.9 1993/06/10 13:27:31 jloup Exp $";
  13. #endif
  14.  
  15. #include "tailor.h"
  16. #include "gzip.h"
  17. #include "lzw.h"
  18.  
  19. #include "MacErrors.h"
  20.  
  21. static int msg_done = 0;
  22.  
  23. /* Compress in to out with lzw method. */
  24. int lzw(in, out)
  25.     int in, out;
  26. {
  27.     if (msg_done) return ERROR;
  28.     msg_done = 1;
  29.     sprintf(strerr,"output in compress .Z format not supported");
  30.     Calert(strerr);
  31.     if (in != out) { /* avoid warnings on unused variables */
  32.         exit_code = ERROR;
  33.     }
  34.     return ERROR;
  35. }
  36.